Modernize build tooling: esbuild + pnpm and add multi-version CI testing#716
Merged
EhabY merged 5 commits intocoder:mainfrom Jan 14, 2026
Merged
Modernize build tooling: esbuild + pnpm and add multi-version CI testing#716EhabY merged 5 commits intocoder:mainfrom
EhabY merged 5 commits intocoder:mainfrom
Conversation
- Add esbuild.mjs build configuration - Update build/watch/package scripts to use esbuild - Enable caching for prettier and eslint commands - Remove webpack, ts-loader, and eslint-plugin-prettier
232ada8 to
0c0946b
Compare
- Bundle openpgp as CJS to avoid ESM runtime errors - Add type checking to build scripts - Fix iconPath to use vscode.Uri.file() - Update @types/node, @types/vscode, and VS Code engine to 1.95.0
- Run unit tests against Electron 32 and latest via matrix - Add integration test job for VS Code 1.95.0 and stable - Add test-electron.sh script for version-specific test runs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR modernizes the build infrastructure, resulting in >2x faster CI builds through better caching (pnpm) and faster tooling (esbuild).
Build System
esbuild.mjsconfiguration with watch mode support and openpgp CJS alias fixPackage Manager Migration
--cache --cache-strategy content)CI/CD Improvements
pnpm/action-setup@v4with built-in cachingnpm install -g @vscode/vsce- use local devDependency insteadscripts/test-electron.shfor version-specific test runsOther Changes